From: Konrad Rzeszutek Wilk Date: Sat, 13 Aug 2016 02:15:04 +0000 (-0400) Subject: x86/arm: Make 'make debug' work properly. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~438 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=25a431286740c97652ad2ff769e225ad96936fc3;p=xen.git x86/arm: Make 'make debug' work properly. When doing cross-compilation we should use proper $(OBJDUMP). Otherwise decompiling say ARM 32 code using x86 objdump won't help much. Acked-by: Jan Beulich Signed-off-by: Konrad Rzeszutek Wilk --- diff --git a/xen/Makefile b/xen/Makefile index 294fb9e25a..d68c84dccd 100644 --- a/xen/Makefile +++ b/xen/Makefile @@ -103,7 +103,7 @@ _uninstall: .PHONY: _debug _debug: - objdump -D -S $(TARGET)-syms > $(TARGET).s + $(OBJDUMP) -D -S $(TARGET)-syms > $(TARGET).s .PHONY: _clean _clean: delete-unfresh-files